home *** CD-ROM | disk | FTP | other *** search
- Path: kari.fm.unit.no!rustad
- From: rustad@fm.unit.no (Rolf Rustad)
- Newsgroups: comp.lang.c++
- Subject: Re: Initial Edit Control Box Data Assignments
- Date: 5 Mar 1996 16:04:01 GMT
- Organization: The Norwegian University of Science and Technology
- Message-ID: <4hholh$961@due.unit.no>
- References: <4hgbt7$2gf@firebrick.mindspring.com>
- NNTP-Posting-Host: kari.fm.unit.no
- X-Newsreader: TIN [version 1.1 PL6]
-
- Michael Clark (clarkmj@atl.mindspring.com) wrote:
- : I am trying to figure out how to make an edit control box display an
- : initial value that is stored in memory. I am using BC3.1 and OWL.
- : This problem is crucial to finishing my design work for an
- : aerodynamics class. Please help with as much detail as possible.
- :
- : Thanks Mike Clark
- : clarkmj@aub.mindspring.com
- :
- :
-
- You need to use the EvInitDialog function. It is called after the interface
- object has been created, so the controls are valid. Include either
- SetDlgItemText(int EditId, const char* txt); or
- Edit.SetText(const char* txt); // The arguments may have a slightly different
- format.
-
- Rolf
-
-